home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_319 / cnewssrc / cnews.orig.lzh / batch / coder.h < prev    next >
C/C++ Source or Header  |  1989-06-27  |  258b  |  9 lines

  1. char header[] = "Decode the following with bdecode\n";
  2. char codeset[] =
  3.     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+-";
  4.  
  5. #define ENCODE(c)    codeset[c]
  6.  
  7. extern short crctab[];
  8. #define CRC(crc, c)     crc = (crc >> 8) ^ crctab[(crc^c) & 0xff]
  9.